type go/constant.complexVal
22 uses
go/constant (current package)
value.go#L100: complexVal struct{ re, im Value }
value.go#L110: func (complexVal) Kind() Kind { return Complex }
value.go#L244: func (x complexVal) String() string { return fmt.Sprintf("(%s + %si)", x.re, x.im) }
value.go#L262: func (x complexVal) ExactString() string {
value.go#L273: func (complexVal) implementsValue() {}
value.go#L285: func vtoc(x Value) complexVal { return complexVal{x, int64Val(0)} }
value.go#L325: return complexVal{re, im}
value.go#L681: case complexVal:
value.go#L827: case complexVal:
value.go#L842: case complexVal:
value.go#L897: case complexVal:
value.go#L919: case complexVal:
value.go#L933: case complexVal:
value.go#L962: case unknownVal, int64Val, intVal, ratVal, floatVal, complexVal:
value.go#L981: case complexVal:
value.go#L1038: case complexVal:
value.go#L1085: case complexVal:
value.go#L1224: case complexVal:
value.go#L1225: y := y.(complexVal)
value.go#L1379: case complexVal:
value.go#L1380: y := y.(complexVal)